home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / pyshared / pycountry / tests.py < prev   
Encoding:
Python Source  |  2010-04-21  |  356 b   |  16 lines

  1. # vim:fileencoding=utf-8
  2. # Copyright (c) 2008 gocept gmbh & co. kg
  3. # See also LICENSE.txt
  4. # $Id$
  5. """Test harness for pycountry."""
  6.  
  7. import doctest
  8. import unittest
  9.  
  10.  
  11. def test_suite():
  12.     suite = unittest.TestSuite()
  13.     suite.addTest(doctest.DocFileSuite('README.txt',
  14.                                        optionflags=doctest.ELLIPSIS))
  15.     return suite
  16.